-
as seen on Simple Talk
- Search for 'Simple Talk'
Win a .NET Reflector Pro license, a box of Red Gate goodies, and a t-shirt printed with your design! Red Gate likes t-shirts. Each of our teams has one. In fact, each individual person has one, numbered according to when they joined the company: Red Gate's 1st, 2nd, and so on right up to Red Gate's…
>>> More
-
as seen on How to geek
- Search for 'How to geek'
Here’s your first peek at How-To Geek’s new line of merchandise! Tell us what you think, what you like, and what you actually would like to own in this first round of potential HTG tee shirts. If you like the content here at HTG, we’d love to hear back from you—we made these for you, the readers,…
>>> More
-
as seen on Internet.com
- Search for 'Internet.com'
<b>Linux.com:</b> "Since then, we've received more than 100 submissions and today, after some grueling decision-making, we are announcing the T-shirt design contest finalists! "
>>> More
-
as seen on Super User
- Search for 'Super User'
I am using MS2003 EXCEL. I have a cell in Sheet 1 with a color value and totals, with sub-totals. On sheet 2, I have a data set with 3 columns (colors, dress, type). On Sheet 1, I will need a tabulation showing Totals for Colors, with totals at sub-group of dress (shirt,pants) split by type totals…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Class TShirt
def size(suggested_size)
if suggested_size == nil
size = "please choose a size"
else
size = suggested
end
end
end
tshirt = TShirt.new
tshirt.size("M")
== "M"
tshirt = TShirt.new
size = tshirt.size(nil)
== "please choose a size"
What is a better way to have optional…
>>> More